-
Notifications
You must be signed in to change notification settings - Fork 292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apply cs #532
Apply cs #532
Conversation
private $locales; | ||
|
||
public function __construct(ConfigFactory $configFactory, Updater $updater, array $locales) | ||
{ | ||
$this->configFactory = $configFactory; | ||
$this->updater = $updater; | ||
$this->locales = $locales; | ||
$this->updater = $updater; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i remember having disabled this in jms serializer...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right, I missed some excluded rules
thanks |
@@ -1,5 +1,7 @@ | |||
<?php | |||
|
|||
declare(strict_types=1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll take a look
Description
This are the changes of applying Doctrine coding standards to the whole code. I tried to manually check the code looking for some calls (that could fail with
strict_types
), but maybe I'm missing some.